|
Server : LiteSpeed System : Linux host 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : idnco5810 ( 1093) PHP Version : 8.2.29 Disable Function : NONE Directory : /usr/local/CyberCP/firewall/migrations/ |
Upload File : |
# Generated by Django 3.1.3 on 2024-03-04 09:20
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='FirewallRules',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=32, unique=True)),
('proto', models.CharField(max_length=10)),
('port', models.CharField(max_length=25)),
('ipAddress', models.CharField(default='0.0.0.0/0', max_length=30)),
],
),
]